home *** CD-ROM | disk | FTP | other *** search
/ IRIX 6.5 Applications 2004 April / SGI IRIX 6.5 Applications 2004 April.iso / dist / mozilla.idb / var / netscape / mozilla / chrome / pippki.jar.z / pippki.jar / content / pippki / certManager.xul < prev    next >
Extensible Markup Language  |  2003-11-11  |  3KB  |  72 lines

  1. <?xml version="1.0"?>
  2. <!-- 
  3.    - The contents of this file are subject to the Mozilla Public
  4.    - License Version 1.1 (the "License"); you may not use this file
  5.    - except in compliance with the License. You may obtain a copy of
  6.    - the License at http://www.mozilla.org/MPL/
  7.    - 
  8.    - Software distributed under the License is distributed on an "AS
  9.    - IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  10.    - implied. See the License for the specific language governing
  11.    - rights and limitations under the License.
  12.    - 
  13.    - The Original Code is mozilla.org code.
  14.    - 
  15.    - The Initial Developer of the Original Code is Netscape
  16.    - Communications Corp.  Portions created by Netscape are
  17.    - Copyright (C) 2001 Netscape Communications Corp.  All
  18.    - Rights Reserved.
  19.    - 
  20.    - Contributor(s):
  21.    -   Bob Lord <lord@netscape.com>
  22.    -   Ian McGreer <mcgreer@netscape.com>
  23.   -->
  24.  
  25. <?xml-stylesheet href="chrome://global/skin/" type="text/css"?>
  26. <?xul-overlay href="chrome://global/content/dialogOverlay.xul"?>
  27.  
  28. <?xul-overlay href="chrome://pippki/content/MineOverlay.xul"?>
  29. <?xul-overlay href="chrome://pippki/content/OthersOverlay.xul"?>
  30. <?xul-overlay href="chrome://pippki/content/WebSitesOverlay.xul"?>
  31. <?xul-overlay href="chrome://pippki/content/CAOverlay.xul"?>
  32.  
  33. <!DOCTYPE window SYSTEM "chrome://pippki/locale/certManager.dtd">
  34.  
  35. <window id="certmanager" 
  36.     windowtype="mozilla:certmanager"
  37.     xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul" 
  38.         title="&certmgr.title;"
  39.         onload="LoadCerts();">
  40.  
  41.   <script type="application/x-javascript" src="chrome://help/content/contextHelp.js"/>
  42.   <script type="application/x-javascript" src="chrome://global/content/strres.js"/>
  43.   <script type="application/x-javascript" src="chrome://pippki/content/pippki.js"/>
  44.   <script type="application/x-javascript" src="chrome://pippki/content/certManager.js"/>
  45.  
  46.   <vbox flex="1">
  47.     <tabbox flex="1">
  48.       <tabs id="certMgrTabbox">
  49.         <tab id="mine_tab" label="&certmgr.tab.mine;"/>
  50.         <tab id="others_tab" label="&certmgr.tab.others;"/>
  51.         <tab id="websites_tab" label="&certmgr.tab.websites;"/>
  52.         <tab id="ca_tab" label="&certmgr.tab.ca;" selected="true"/>
  53.       </tabs>
  54.       <tabpanels flex="1">
  55.         <vbox id="myCerts" flex="1"/>
  56.         <vbox id="othersCerts" flex="1"/>
  57.         <vbox id="webCerts" flex="1"/>
  58.         <vbox id="CACerts" flex="1"/>
  59.       </tabpanels>
  60.     </tabbox>
  61.  
  62.     <hbox align="center">
  63.       <button id="HelpButton"
  64.               label="&certmgr.help.label;" 
  65.               accesskey="&certmgr.helpButtonAccessKey;"
  66.               oncommand="doHelpButton();"/>
  67.       <description id="ocsp_info" hidden="true">&certmgr.ocsp_info;</description>
  68.     </hbox>
  69.   </vbox>
  70.  
  71. </window>
  72.